home *** CD-ROM | disk | FTP | other *** search
/ Resource Library: Multimedia / Resource Library: Multimedia.iso / hypertxt / msdos / hydos10 / format < prev    next >
Text File  |  1991-04-13  |  3KB  |  55 lines

  1.                                    FORMAT
  2.       Initializes a disk or partition to accept MS-DOS files
  3.                         See also <SYS> <LABEL> <VOL>
  4.  
  5. FORMAT checks for any defective tracks, and prepares the disk to
  6. accept DOS files.  It creates the directory and file allocation tables
  7. (FAT) and assigns a unique volume serial number.  It may also
  8. optionally copy the MSDOS system files to the new disc.
  9.  
  10. COMMAND TYPE: External                  VERSION: 2.0 and up
  11.  
  12. USE:  FORMAT d:[/S][/1][/4][/8][/B] [/n:sectors][/t:tracks][/v:label]
  13.              [/f:size]
  14.  
  15. d:  is the drive to be formatted.
  16. /S  copies the system files from the source disk to the destination
  17.     disk and makes the disk bootable.  There are three system files:
  18.         IBMBIO.COM     IBMDOS.COM   COMMAND.COM
  19.         (these files may have different names on non-IBM systems)
  20. /1  formats a diskette on 1 side only making it a single sided
  21.     diskette regardless of the drive type used.
  22. /4  formats a 360k (DSDD) diskette in a high capacity drive.  Such disks
  23.     may not always be read reliably by 360k drives because of the narrower
  24.     tracks.
  25. /8  formats a disk using 8 sectors per track.  (Obsolete - required to
  26.     remain compatible with version 1.1 of DOS)
  27. /V  will allow you to add a volume label to the diskette being
  28.     formatted. Volume labels are a way to identify individual
  29.     diskettes.  The label (up to 11 characters) may be specified after /v
  30.     or will be prompted for when formatting is complete.
  31. /B  formats a diskette using 8 sectors per track and allocates space
  32.     for system files to be transferred later (using the SYS
  33.     command). Using the /B option will allow you to install any
  34.     version of the DOS system files.
  35.  
  36. (MSDOS 4.x extensions)
  37. /t:tracks  specifies the number of tracks to place on the disc
  38. /n:sectors specifies the number of sectors to place on the disc
  39. /f:size    specifies the size of the diskette.  MSDOS chooses the
  40.            appropriate number of tracks and sectors.  Allowable values are
  41.            160k 180k 320k 360k 720k 1200k 1440k (may be specified with
  42.            "k", "kb" or neither).  This cannot be used the /t or /n
  43.  
  44. By default, FORMAT will use the drive specification to determine the type
  45. of disc according to the the physical drive addressed by that letter.  If
  46. it is a non-removable hard disc, FORMAT will request confirmation before
  47. proceeding.
  48.  
  49. EXAMPLE: FORMAT C: /S /V
  50. FORMATS drive C:, copies the SYSTEM files to drive C:, and prompts the
  51. user for a VOLUME LABEL.
  52.  
  53. NOTE: FORMAT destroys any existing data on the disk, and ignores any
  54. drive reassignments made via the <ASSIGN> command.
  55.